section {
    scroll-margin-top: 70px;
}

.home {
    position: relative;
    width: 100%;
    justify-content: space-between;
    min-height: 100vh;
    background-color: black;
    /* background: url("../Page_1.png") no-repeat; */
    background-size: cover;
    background-position: center;
    display: flex;
    gap: 35px;
    align-items: center;
    padding: 0 10% 5%;
}


.home img {
    height: 450px;
    animation: slideLeft 1s ease forwards;
    animation-delay: 0.1s;
    transition: transform 0.3s ease-out;
    transform-origin: center;
}

.home img:hover {
    transform: scale(1.01) !important;
}

.home-content {
    max-width: 600px;
}

.home-content h3 {
    font-size: 32px;
    font-weight: 700;
    opacity: 0;
    animation: slideBottom 1s ease forwards;
    animation-delay: 0s;
}

.home-content h3:nth-of-type(2) {
    margin-bottom: 30px;
    animation: slideTop 1s ease forwards;
    animation-delay: 0.1s;
}

.home-content h3 span {
    color: #0ef;
}

.home-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin: -3px 0;
    opacity: 0;
    animation: slideRight 1s ease forwards;
    animation-delay: 0.1s;
}

.home-content p {
    font-size: 20px;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
    animation-delay: 0.2s;
}

.home-sci a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #0ef;
    border-radius: 50%;
    font-size: 20px;
    color: #0ef;
    text-decoration: none;
    transition: .5s ease;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
    animation-delay: calc(0.1s * var(--i));
    margin: 30px 15px 30px 0;
}

.home-sci a:hover {
    background: #0ef;
    color: #081b29;
    box-shadow: 0 0 20px #0ef;
}

.btn-box {
    display: inline-block;
    padding: 12px 28px;
    background: #0ef;
    border-radius: 40px;
    font-size: 16px;
    color: #081b29;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    animation: slideTop 1s ease forwards;
    animation-delay: 0.5s;
    box-shadow: 0 0 5px #0ef,
        0 0 25px #0ef
}

.btn-box:hover {
    box-shadow: 0 0 5px cyan,
        0 0 25px cyan, 0 0 50px cyan,
        0 0 100px cyan, 0 0 200px cyan
}

@media screen and (max-width: 768px) {
    .home {
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: center;
        height: auto;
        min-height: auto;
        padding: 0 5% 50px;
        margin-top: 0;
        scroll-margin-top: 0;
        gap: 0;
    }

    .home-content {
        width: 100%;
    }

    .home-content h1 {
        font-size: 36px;
    }

    .home-content h3 {
        font-size: 24px;
    }

    .home-content p {
        font-size: 16px;
    }

    .home img {
        width: 70%;
        max-width: 250px;
        height: auto;
        margin-top: 0;
        margin-bottom: 2rem;
        flex-shrink: 0;
    }

    .home-sci a {
        width: 35px;
        height: 35px;
        margin: 20px 10px 20px 0;
    }

    .btn-box {
        margin-top: 30px;
    }
}